
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
--navy:#071a3d;
--navy2:#0b2545;
--blue:#2563eb;
--green:#10b981;
--light:#f8fbff;
--text:#334155;
--white:#ffffff;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:linear-gradient(180deg,#f8fbff,#eef7ff);
color:var(--text);
line-height:1.8;
}

/* Sticky CTA */

.sticky-apply{
position:fixed;
right:20px;
bottom:20px;
z-index:999;
background:linear-gradient(135deg,var(--blue),var(--green));
color:white;
text-decoration:none;
padding:14px 24px;
border-radius:50px;
font-weight:700;
box-shadow:0 15px 35px rgba(37,99,235,.25);
}

/* Hero */

.hero{
min-height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:40px;
background:
linear-gradient(rgba(7,26,61,.88),rgba(7,26,61,.88));
position:relative;
overflow:hidden;
}

.hero:before{
content:"";
position:absolute;
width:500px;
height:500px;
border-radius:50%;
background:rgba(37,99,235,.15);
filter:blur(80px);
top:-120px;
left:-120px;
}

.hero:after{
content:"";
position:absolute;
width:500px;
height:500px;
border-radius:50%;
background:rgba(16,185,129,.12);
filter:blur(80px);
right:-120px;
bottom:-120px;
}

.hero-content{
position:relative;
z-index:2;
max-width:950px;
}

.badge{
display:inline-block;
padding:10px 20px;
border-radius:50px;
background:rgba(255,255,255,.1);
color:#dbeafe;
margin-bottom:20px;
}

.hero h1{
font-size:72px;
line-height:1.1;
color:white;
margin-bottom:20px;
}

.hero p{
font-size:22px;
color:#dbeafe;
max-width:800px;
margin:auto;
}

.hero-buttons{
margin-top:35px;
display:flex;
gap:15px;
justify-content:center;
flex-wrap:wrap;
}

.hero-buttons a{
text-decoration:none;
padding:14px 28px;
border-radius:50px;
font-weight:700;
}

.hero-buttons a:first-child{
background:linear-gradient(135deg,var(--green),#34d399);
color:white;
}

.hero-buttons a:last-child{
background:white;
color:var(--navy);
}

/* Trust Bar */

.trust-bar{
max-width:1200px;
margin:-45px auto 0;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
padding:0 20px;
position:relative;
z-index:5;
}

.trust-bar div{
background:white;
padding:22px;
border-radius:20px;
text-align:center;
font-weight:700;
box-shadow:0 15px 35px rgba(0,0,0,.08);
}

/* Container */

.container{
max-width:1200px;
margin:40px auto 80px;
padding:0 20px;
}

section{
background:white;
padding:40px;
border-radius:28px;
margin-bottom:30px;
box-shadow:0 12px 30px rgba(0,0,0,.05);
}

section h2{
font-size:38px;
color:var(--navy);
margin-bottom:20px;
}

section h2::after{
content:"";
display:block;
width:90px;
height:4px;
margin-top:10px;
border-radius:20px;
background:linear-gradient(90deg,var(--blue),var(--green));
}

/* Cards */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:20px;
}

.card{
padding:25px;
border-radius:22px;
background:linear-gradient(180deg,#ffffff,#f8fbff);
border:1px solid #e5eefc;
transition:.3s;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(37,99,235,.12);
}

.card h3{
color:var(--navy);
margin-bottom:10px;
}

/* TOC */

#toc ol{
padding-left:25px;
}

#toc li{
margin-bottom:10px;
}

/* Lists */

ol,ul{
padding-left:25px;
}

li{
margin-bottom:10px;
}

/* CTA */

.cta{
text-align:center;
background:linear-gradient(135deg,var(--navy),var(--navy2));
color:white;
}

.cta h2{
color:white;
}

.cta h2::after{
display:none;
}

.cta p{
margin-bottom:25px;
}

.cta a{
display:inline-block;
padding:15px 30px;
border-radius:50px;
background:linear-gradient(135deg,var(--green),#34d399);
color:white;
text-decoration:none;
font-weight:700;
}

/* Responsive */

@media(max-width:900px){

.hero h1{
font-size:48px;
}

.trust-bar{
grid-template-columns:repeat(2,1fr);
}

section{
padding:28px;
}

section h2{
font-size:30px;
}
}

@media(max-width:600px){

.hero h1{
font-size:36px;
}

.hero p{
font-size:17px;
}

.trust-bar{
grid-template-columns:1fr;
}

.hero-buttons{
flex-direction:column;
}

.sticky-apply{
font-size:14px;
padding:12px 18px;
}
}
